:root {
  --primary: #3a6b52;
  --primary-d: #2c5240;
  --primary-dd: #16291f;
  --glow: #5fd3a0;
  --mint: #9beec6;
  --warm: #f08a6b;
  --cream: #f4f2ea;
  --paper: #fbfaf5;
  --ink: #19231d;
  --muted: #5e6e64;
  --disp: "GmarketSansBold", "Jua", "Noto Sans KR", sans-serif;
  --body: "Pretendard", "Noto Sans KR", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
body {
  margin: 0;
  background: var(--cream);
  font-family: var(--body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--glow);
  color: var(--primary-dd);
}
@keyframes hmReveal {
  from {
    opacity: 0;
    transform: translateY(42px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes glowpulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.12);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hm-vis {
  animation: hmReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
  }
}
